home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / IE3 / CLASSES.ZIP / sun / NET / WWW / AUTH / Authenticator.class (.txt) next >
Encoding:
Java Class File  |  1997-03-06  |  363 b   |  12 lines

  1. package sun.net.www.auth;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public abstract class Authenticator {
  8.    public abstract void encrypt(InputStream var1, OutputStream var2) throws IOException;
  9.  
  10.    public abstract void decrypt(InputStream var1, OutputStream var2) throws IOException;
  11. }
  12.